Skip to main content

01. Initial Enumeration

mkdir machine && cd machine

Compile a list of accessible hosts and add it to a hosts.txt file.

Run one or more scans on the host:

  • Nmap
    • sudo nmap -sV -O -A -Pn -p- -iL hosts.txt
  • Autorecon
    • sudo su /home/kali/.local/bin/autorecon -t hosts.txt
  • Incursore
    • mkdir incursore && cd incursore sudo ~/tools/incursore/incursore.sh -t all -H $IP

Hosts with specific port open: nmap --open -p 111 10.11.1.0/24 -oG - | grep "/open" | awk '{ print $2 }'


Information to Note

Review the completed scans and mark down any notable information in your spreadsheet:

  • Operating Systems
  • Hostnames
  • Open Ports
  • Service Versions
  • Anonymous or Guest access
  • Random port with no info? try nc IP PORT or echo "version" | nc IP PORT
IPHostnameOS
192.168.201.145FILES01Windows Server 2012
PortServiceNotes
21vsftpd 2.0.8 or laterAnonymous Allowed
22OpenSSH for_Windows_8.1 (protocol 2.0)Accepts Passwords
80Apache httpd 2.4.51 ((Win64) PHP/7.4.26)Attendance and Payroll System

Additional Service Enumeration

Quick links to information by service:

ServiceServiceService
[[21 - FTP]][[22 - SSH]][[23 - TELNET]]
[[25 - SMTP]][[53 - DNS]][[80 - WEB]]
[[88 - KERBEROS]][[111 - NFS]][[135 - RPC]]
[[445 - SMB]][[161 - SNMP]][[389 - LDAP]]
[[3389 - RDP]][[5985 - WINRM]][[SQL DBs]]